home *** CD-ROM | disk | FTP | other *** search
/ Visual Basic Source Code / Visual Basic Source Code.iso / vbsource / powervww / terrmon.h < prev    next >
C/C++ Source or Header  |  1998-01-05  |  1KB  |  41 lines

  1. //  ____________________________________________________
  2. // |                                                    |
  3. // |  Project:     POWER VIEW IDE                       |
  4. // |  File:        TERRMON.H                            |
  5. // |  Compiler:    WPP386 (10.6)                        |
  6. // |                                                    |
  7. // |  Subject:     Terror_monitor class interface       |
  8. // |                                                    |
  9. // |  Author:      Emil Dotchevski                      |
  10. // |____________________________________________________|
  11. //
  12. // E-mail: zajo@geocities.com
  13. // URL:    http://www.geocities.com/SiliconValley/Bay/3577
  14.  
  15. #ifndef _TERRMON_H_INCLUDED
  16. #define _TERRMON_H_INCLUDED
  17.  
  18.   class Terror_monitor: public Titem
  19.   {
  20.     public:
  21.       char *msg;
  22.       Tfile_editor *editor;
  23.       Terror_monitor( char *error_msg, Titem *_editor );
  24.       virtual ~Terror_monitor( void );
  25.  
  26.     protected:
  27.       virtual void draw( void );
  28.       virtual void event_handler( Tevent &ev );
  29.   };
  30.  
  31. #endif //TERRMON_H_INCLUDED
  32.  
  33.  
  34. #ifdef _DECLARE_TERRMON_H
  35.   #define GLOBAL
  36. #else
  37.   #define GLOBAL extern
  38. #endif
  39.   GLOBAL Terror_monitor *err_mon;
  40. #undef GLOBAL
  41.